home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / sun4c.md / netConfig.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  35 lines

  1. /*
  2.  * netConfig.c --
  3.  *
  4.  *    Machine-type dependent initialization of the network interfaces.
  5.  *
  6.  * Copyright (C) 1987 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/net/sun4c.md/netConfig.c,v 1.2 90/10/19 15:48:01 jhh Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #include "sprite.h"
  20. #include "net.h"
  21. #include "netInt.h"
  22. #include "netLEInt.h"
  23.  
  24. /*
  25.  * On the sparcstations the control register isn't mapped by the prom.
  26.  * It is at physical address 0x8c00000.
  27.  */
  28.  
  29. Net_Interface netConfigInterfaces[] = {
  30.     {"LE", 0, (Address) 0x8c00000, FALSE, 5, NetLEInit}
  31. };
  32. int netNumConfigInterfaces = 
  33.         sizeof(netConfigInterfaces) / sizeof(Net_Interface);
  34.  
  35.